home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / scripts / tarball.c < prev   
C/C++ Source or Header  |  1997-08-03  |  538b  |  23 lines

  1. #include <stdio.h>
  2.  
  3. #include "pi-socket.h"
  4.  
  5. void main(void)
  6. {
  7.     char dir[80],cmd[256];
  8.     sprintf(dir, "pilot-link.%d.%d.%d", PILOT_LINK_VERSION, PILOT_LINK_MAJOR, PILOT_LINK_MINOR);
  9.     sprintf(cmd, "rm tarball; cd ..; rm %s; ln -s plk %s", dir, dir);
  10.     printf("%s\n",cmd);
  11.     system(cmd);
  12.     sprintf(cmd, "cd ..; tar cvf %s.tar %s/", dir, dir);
  13.     printf("%s\n",cmd);
  14.     fflush(stdout);
  15.     system(cmd);
  16.     sprintf(cmd, "cd ..; gzip %s.tar", dir);
  17.     printf("%s\n",cmd);
  18.     system(cmd);
  19.     sprintf(cmd, "cd ..; rm %s", dir);
  20.     printf("%s\n",cmd);
  21.     system(cmd);
  22. }
  23.